home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HAKERIS 11
/
HAKERIS 11.ISO
/
linux
/
system
/
LinuxConsole 0.4
/
linuxconsole0.4install-en.iso
/
linuxconsole0.4.lcm
/
lib
/
perl5
/
5.8.0
/
utf8.pm
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl POD Document
|
2004-03-26
|
352 b
|
23 lines
package utf8;
$utf8::hint_bits = 0x00800000;
our $VERSION = '1.00';
sub import {
$^H |= $utf8::hint_bits;
$enc{caller()} = $_[1] if $_[1];
}
sub unimport {
$^H &= ~$utf8::hint_bits;
}
sub AUTOLOAD {
require "utf8_heavy.pl";
goto &$AUTOLOAD if defined &$AUTOLOAD;
Carp::croak("Undefined subroutine $AUTOLOAD called");
}
1;